1 template< class T > 2 void printArray( const T *array, const int count ) 3 { 4 for ( int i = 0; i < count; i++ ) 5 cout << array[ i ] << " "; 6 7 cout << endl; 8 }